home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Easy Applet Builder v1.7 / _SETUP.1 / HiddenLink.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-11-06  |  8.8 KB  |  398 lines

  1. import java.applet.Applet;
  2. import java.applet.AudioClip;
  3. import java.awt.Color;
  4. import java.awt.Component;
  5. import java.awt.Cursor;
  6. import java.awt.Font;
  7. import java.awt.FontMetrics;
  8. import java.awt.Graphics;
  9. import java.awt.Image;
  10. import java.awt.MediaTracker;
  11. import java.awt.event.MouseEvent;
  12. import java.awt.event.MouseListener;
  13. import java.net.MalformedURLException;
  14. import java.net.URL;
  15. import java.net.URLEncoder;
  16.  
  17. public class HiddenLink extends Applet implements Runnable, MouseListener {
  18.    private Thread thread;
  19.    private Image image;
  20.    private Image buffer;
  21.    // $FF: renamed from: b java.awt.Graphics
  22.    private Graphics field_0;
  23.    private boolean loaded;
  24.    private boolean visible;
  25.    // $FF: renamed from: wi int
  26.    private int field_1;
  27.    // $FF: renamed from: he int
  28.    private int field_2;
  29.    private int pause = 100;
  30.    private int pause1 = 3000;
  31.    private int pause2 = 2000;
  32.    private int decx;
  33.    private int decy;
  34.    private String statusBarText;
  35.    private AudioClip sound;
  36.    private AudioClip clicSound;
  37.    private AudioClip enterSound;
  38.    private boolean loopSound;
  39.    private String link;
  40.    // $FF: renamed from: fm java.awt.FontMetrics
  41.    private FontMetrics field_3;
  42.    private String enterText;
  43.    private boolean isEnterTextEnabled;
  44.    private int wiEnterText;
  45.    private int enterTextHeight;
  46.    private Color enterTextColor;
  47.  
  48.    public String getAppletInfo() {
  49.       return "Name: HiddenLink\r\nAuthor: Taiji Software\r\n";
  50.    }
  51.  
  52.    public HiddenLink() {
  53.       ((Component)this).addMouseListener(this);
  54.    }
  55.  
  56.    public void register() {
  57.       try {
  58.          URL u = new URL("http://www.taijisoftware.com");
  59.          ((Applet)this).getAppletContext().showDocument(u, "_blank");
  60.       } catch (Exception e) {
  61.          System.out.println(e);
  62.          this.stop();
  63.       }
  64.    }
  65.  
  66.    public void init() {
  67.       String codeBase = null;
  68.  
  69.       try {
  70.          codeBase = (new URL(((Applet)this).getCodeBase().toString())).getHost();
  71.          System.out.println("Copyright 1999, 2001 Taiji Software(tm)\nYour domain name is : " + codeBase);
  72.          codeBase = codeBase.toUpperCase();
  73.       } catch (Exception var9) {
  74.       }
  75.  
  76.       if (!((Applet)this).getCodeBase().toString().toUpperCase().startsWith("FILE") || ((Applet)this).getParameter("debug") != null) {
  77.          String regCode = ((Applet)this).getParameter("registration_code");
  78.          if (regCode == null) {
  79.             regCode = ((Applet)this).getParameter("reg_domain");
  80.             if (regCode == null) {
  81.                this.register();
  82.             } else {
  83.                if (regCode.length() == codeBase.length() + 4 && !codeBase.startsWith("WWW.")) {
  84.                   codeBase = "WWW." + codeBase;
  85.                } else if (regCode.length() == codeBase.length() - 4 && codeBase.startsWith("WWW.")) {
  86.                   codeBase = codeBase.substring(4);
  87.                }
  88.  
  89.                char[] chars = new char[codeBase.length()];
  90.                codeBase.getChars(0, codeBase.length(), chars, 0);
  91.                String key = new String("haricot");
  92.                char[] chars2 = new char[key.length()];
  93.                key.getChars(0, key.length(), chars2, 0);
  94.  
  95.                for(int i = 0; i < codeBase.length(); ++i) {
  96.                   int j;
  97.                   if (i >= key.length()) {
  98.                      j = i - key.length() * (i / key.length());
  99.                   } else {
  100.                      j = i;
  101.                   }
  102.  
  103.                   chars[i] += chars2[j];
  104.                   chars[i] = (char)(chars[i] - chars[i] / 26 * 26 + 97);
  105.                }
  106.  
  107.                String res = new String(chars);
  108.                if (!res.equalsIgnoreCase(regCode)) {
  109.                   this.register();
  110.                }
  111.             }
  112.          } else if (!regCode.equals("settevercsedegnamiaj") && !regCode.equals("8078")) {
  113.             this.register();
  114.          }
  115.       }
  116.  
  117.       this.getParameters();
  118.       if (this.sound != null) {
  119.          if (this.loopSound) {
  120.             this.sound.loop();
  121.             return;
  122.          }
  123.  
  124.          this.sound.play();
  125.       }
  126.  
  127.    }
  128.  
  129.    public void getParameters() {
  130.       this.field_1 = ((Component)this).getSize().width;
  131.       this.field_2 = ((Component)this).getSize().height;
  132.       String s = ((Applet)this).getParameter("pause");
  133.       if (s != null) {
  134.          this.pause = Integer.parseInt(s);
  135.       }
  136.  
  137.       s = ((Applet)this).getParameter("pause1");
  138.       if (s != null) {
  139.          this.pause1 = Integer.parseInt(s);
  140.       }
  141.  
  142.       s = ((Applet)this).getParameter("pause2");
  143.       if (s != null) {
  144.          this.pause2 = Integer.parseInt(s);
  145.       }
  146.  
  147.       ((Component)this).setBackground(this.getColor("background_color"));
  148.       this.statusBarText = ((Applet)this).getParameter("status_bar_text");
  149.       s = ((Applet)this).getParameter("sound_name");
  150.       if (s != null) {
  151.          this.sound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  152.       }
  153.  
  154.       s = ((Applet)this).getParameter("loop_sound");
  155.       if (s != null) {
  156.          if (s.equals("yes")) {
  157.             this.loopSound = true;
  158.          } else {
  159.             this.loopSound = false;
  160.          }
  161.       }
  162.  
  163.       s = ((Applet)this).getParameter("clic_sound_name");
  164.       if (s != null) {
  165.          this.clicSound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  166.       }
  167.  
  168.       s = ((Applet)this).getParameter("enter_sound_name");
  169.       if (s != null) {
  170.          this.enterSound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  171.       }
  172.  
  173.       this.link = ((Applet)this).getParameter("link");
  174.       this.enterText = ((Applet)this).getParameter("enter_text");
  175.       s = ((Applet)this).getParameter("enter_text_height");
  176.       if (s != null) {
  177.          this.enterTextHeight = Integer.parseInt(s);
  178.       }
  179.  
  180.       this.enterTextColor = this.getColor("enter_text_color");
  181.       if (this.enterTextColor == null) {
  182.          this.enterTextColor = Color.white;
  183.       }
  184.  
  185.    }
  186.  
  187.    public Color getColor(String param) {
  188.       String s = ((Applet)this).getParameter(param);
  189.       if (s != null) {
  190.          if (s.substring(0, 1).equals("#")) {
  191.             s = s.substring(1);
  192.             int i = Integer.parseInt(s, 16);
  193.             return new Color(i);
  194.          } else {
  195.             return null;
  196.          }
  197.       } else {
  198.          return null;
  199.       }
  200.    }
  201.  
  202.    public void paint(Graphics g) {
  203.       if (this.loaded) {
  204.          this.field_0.clearRect(0, 0, this.field_1, this.field_2);
  205.          if (this.visible) {
  206.             this.field_0.drawImage(this.image, this.decx, this.decy, this);
  207.          }
  208.  
  209.          if (this.isEnterTextEnabled && this.visible) {
  210.             this.field_0.drawString(this.enterText, (this.field_1 - this.wiEnterText) / 2, this.field_2 / 2);
  211.          }
  212.  
  213.          g.drawImage(this.buffer, 0, 0, this);
  214.       }
  215.  
  216.    }
  217.  
  218.    public void update(Graphics g) {
  219.       this.paint(g);
  220.    }
  221.  
  222.    public void start() {
  223.       if (this.thread == null) {
  224.          this.thread = new Thread(this);
  225.          this.thread.start();
  226.       }
  227.  
  228.    }
  229.  
  230.    public void stop() {
  231.       if (this.thread != null) {
  232.          this.thread = null;
  233.       }
  234.  
  235.       if (this.sound != null) {
  236.          this.sound.stop();
  237.       }
  238.  
  239.    }
  240.  
  241.    public void run() {
  242.       if (!this.loaded) {
  243.          MediaTracker tracker = new MediaTracker(this);
  244.          this.image = ((Applet)this).getImage(((Applet)this).getCodeBase(), ((Applet)this).getParameter("image"));
  245.          tracker.addImage(this.image, 0);
  246.  
  247.          try {
  248.             tracker.waitForAll();
  249.             this.loaded = !tracker.isErrorAny();
  250.          } catch (Exception e) {
  251.             System.out.println(e);
  252.          }
  253.  
  254.          if (!this.loaded) {
  255.             this.stop();
  256.          }
  257.       }
  258.  
  259.       int wiIm = this.image.getWidth(this);
  260.       int heIm = this.image.getHeight(this);
  261.       this.decx = (this.field_1 - wiIm) / 2;
  262.       this.decy = (this.field_2 - heIm) / 2;
  263.       this.buffer = ((Component)this).createImage(this.field_1, this.field_2);
  264.       this.field_0 = this.buffer.getGraphics();
  265.       this.field_0.setColor(this.enterTextColor);
  266.       String fontName = ((Applet)this).getParameter("enter_text_font");
  267.       if (fontName == null) {
  268.          fontName = "TimesRoman";
  269.       }
  270.  
  271.       int style = 1;
  272.       String s = ((Applet)this).getParameter("enter_text_style");
  273.       if (s != null) {
  274.          if (s.equals("bold")) {
  275.             style = 1;
  276.          } else if (s.equals("italic")) {
  277.             style = 2;
  278.          } else if (s.equals("bold_italic")) {
  279.             style = 3;
  280.          } else {
  281.             style = 0;
  282.          }
  283.       }
  284.  
  285.       this.field_0.setFont(new Font(fontName, style, this.enterTextHeight));
  286.       this.field_3 = this.field_0.getFontMetrics();
  287.       if (this.enterText != null) {
  288.          this.wiEnterText = this.field_3.stringWidth(this.enterText);
  289.       }
  290.  
  291.       int count = 0;
  292.  
  293.       while(true) {
  294.          ((Component)this).repaint();
  295.  
  296.          try {
  297.             Thread.sleep((long)this.pause);
  298.          } catch (InterruptedException var7) {
  299.             this.stop();
  300.          }
  301.  
  302.          count += this.pause;
  303.          if (!this.visible && count > this.pause1) {
  304.             this.visible = true;
  305.             count = 0;
  306.          } else if (this.visible && count > this.pause2) {
  307.             this.visible = false;
  308.             count = 0;
  309.          }
  310.       }
  311.    }
  312.  
  313.    public URL giveURL(String url) {
  314.       try {
  315.          if (url.toUpperCase().startsWith("HTTP")) {
  316.             return new URL(url);
  317.          } else if (url.toUpperCase().startsWith("FTP")) {
  318.             int p = url.indexOf(":");
  319.             int p2 = url.indexOf(":", p + 1);
  320.             if (p2 != -1) {
  321.                url = url.substring(0, p + 3) + URLEncoder.encode(url.substring(p + 3, url.length()));
  322.             }
  323.  
  324.             p = url.indexOf("%40");
  325.             if (p != -1) {
  326.                url = url.substring(0, p) + "@" + url.substring(p + 3, url.length());
  327.             }
  328.  
  329.             return new URL(url);
  330.          } else {
  331.             return new URL(((Applet)this).getCodeBase(), url);
  332.          }
  333.       } catch (MalformedURLException e) {
  334.          System.out.println(e);
  335.          return null;
  336.       }
  337.    }
  338.  
  339.    public void mouseClicked(MouseEvent e) {
  340.    }
  341.  
  342.    public void mouseEntered(MouseEvent e) {
  343.       if (this.visible) {
  344.          if (this.enterText != null) {
  345.             this.isEnterTextEnabled = true;
  346.             ((Component)this).repaint();
  347.          }
  348.  
  349.          if (this.statusBarText != null) {
  350.             ((Applet)this).showStatus(this.statusBarText);
  351.          }
  352.  
  353.          if (this.enterSound != null) {
  354.             this.enterSound.play();
  355.          }
  356.  
  357.          if (this.link != null) {
  358.             ((Component)this).setCursor(new Cursor(12));
  359.          }
  360.  
  361.       }
  362.    }
  363.  
  364.    public void mouseExited(MouseEvent e) {
  365.       if (this.isEnterTextEnabled) {
  366.          this.isEnterTextEnabled = false;
  367.          ((Component)this).repaint();
  368.       }
  369.  
  370.       if (this.link != null) {
  371.          ((Component)this).setCursor(new Cursor(0));
  372.       }
  373.  
  374.    }
  375.  
  376.    public void mousePressed(MouseEvent e) {
  377.       if (this.visible) {
  378.          if (this.clicSound != null) {
  379.             this.clicSound.play();
  380.          }
  381.  
  382.          if (this.link != null) {
  383.             String target = ((Applet)this).getParameter("target");
  384.             if (target == null) {
  385.                target = "_blank";
  386.             }
  387.  
  388.             URL u = this.giveURL(this.link);
  389.             ((Applet)this).getAppletContext().showDocument(u, target);
  390.          }
  391.  
  392.       }
  393.    }
  394.  
  395.    public void mouseReleased(MouseEvent e) {
  396.    }
  397. }
  398.